mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
When installing unrelated package inside scoped packages dont invalidate resolutions from everything in the scoped package (#53873)
This commit is contained in:
parent
020ce0c08c
commit
53d378720a
@ -1889,7 +1889,7 @@ export function pathContainsNodeModules(path: string): boolean {
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
export function parseNodeModuleFromPath(resolved: string): string | undefined {
|
||||
export function parseNodeModuleFromPath(resolved: string, isFolder?: boolean): string | undefined {
|
||||
const path = normalizePath(resolved);
|
||||
const idx = path.lastIndexOf(nodeModulesPathPart);
|
||||
if (idx === -1) {
|
||||
@ -1897,16 +1897,16 @@ export function parseNodeModuleFromPath(resolved: string): string | undefined {
|
||||
}
|
||||
|
||||
const indexAfterNodeModules = idx + nodeModulesPathPart.length;
|
||||
let indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterNodeModules);
|
||||
let indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterNodeModules, isFolder);
|
||||
if (path.charCodeAt(indexAfterNodeModules) === CharacterCodes.at) {
|
||||
indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterPackageName);
|
||||
indexAfterPackageName = moveToNextDirectorySeparatorIfAvailable(path, indexAfterPackageName, isFolder);
|
||||
}
|
||||
return path.slice(0, indexAfterPackageName);
|
||||
}
|
||||
|
||||
function moveToNextDirectorySeparatorIfAvailable(path: string, prevSeparatorIndex: number): number {
|
||||
function moveToNextDirectorySeparatorIfAvailable(path: string, prevSeparatorIndex: number, isFolder: boolean | undefined): number {
|
||||
const nextSeparatorIndex = path.indexOf(directorySeparator, prevSeparatorIndex + 1);
|
||||
return nextSeparatorIndex === -1 ? prevSeparatorIndex : nextSeparatorIndex;
|
||||
return nextSeparatorIndex === -1 ? isFolder ? path.length : prevSeparatorIndex : nextSeparatorIndex;
|
||||
}
|
||||
|
||||
function loadModuleFromFileNoPackageId(extensions: Extensions, candidate: string, onlyRecordFailures: boolean, state: ModuleResolutionState): Resolved | undefined {
|
||||
|
||||
@ -1152,7 +1152,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD
|
||||
// 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);
|
||||
const packagePath = parseNodeModuleFromPath(fileOrDirectoryPath, /*isFolder*/ true);
|
||||
if (packagePath) (startsWithPathChecks ||= new Set()).add(packagePath as Path);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import * as ts from "../../_namespaces/ts";
|
||||
import * as Utils from "../../_namespaces/Utils";
|
||||
import { libContent } from "../tsc/helpers";
|
||||
import {
|
||||
createWatchedSystem,
|
||||
File,
|
||||
@ -621,4 +622,64 @@ declare namespace NodeJS {
|
||||
},
|
||||
]
|
||||
});
|
||||
|
||||
verifyTscWatch({
|
||||
scenario,
|
||||
subScenario: "scoped package installation",
|
||||
commandLineArgs: ["--w", "-p", `.`, "--traceResolution", "--extendedDiagnostics"],
|
||||
sys: () => createWatchedSystem({
|
||||
"/user/username/projects/myproject/lib/app.ts": Utils.dedent`
|
||||
import { myapp } from "@myapp/ts-types";
|
||||
const x: 10 = myapp;
|
||||
`,
|
||||
"/user/username/projects/myproject/tsconfig.json": "{}",
|
||||
[libFile.path]: libContent,
|
||||
}, { currentDirectory: "/user/username/projects/myproject" }),
|
||||
edits: [
|
||||
{
|
||||
caption: "npm install unrelated non scoped",
|
||||
edit: sys => sys.ensureFileOrFolder({
|
||||
path: `/user/username/projects/myproject/node_modules/unrelated/index.d.ts`,
|
||||
content: `export const unrelated = 10;`
|
||||
}),
|
||||
timeouts: sys => {
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
},
|
||||
},
|
||||
{
|
||||
caption: "npm install unrelated scoped in myapp",
|
||||
edit: sys => sys.ensureFileOrFolder({
|
||||
path: `/user/username/projects/myproject/node_modules/@myapp/unrelated/index.d.ts`,
|
||||
content: `export const myappUnrelated = 10;`
|
||||
}),
|
||||
timeouts: sys => {
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
},
|
||||
},
|
||||
{
|
||||
caption: "npm install unrelated2 scoped in myapp",
|
||||
edit: sys => sys.ensureFileOrFolder({
|
||||
path: `/user/username/projects/myproject/node_modules/@myapp/unrelated2/index.d.ts`,
|
||||
content: `export const myappUnrelated2 = 10;`
|
||||
}),
|
||||
timeouts: sys => {
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
},
|
||||
},
|
||||
{
|
||||
caption: "npm install ts-types",
|
||||
edit: sys => sys.ensureFileOrFolder({
|
||||
path: `/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts`,
|
||||
content: `export const myapp = 10;`
|
||||
}),
|
||||
timeouts: sys => {
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
sys.runQueuedTimeoutCallbacks();
|
||||
},
|
||||
},
|
||||
]
|
||||
});
|
||||
});
|
||||
|
||||
@ -0,0 +1,481 @@
|
||||
currentDirectory:: /user/username/projects/myproject useCaseSensitiveFileNames: false
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/lib/app.ts]
|
||||
import { myapp } from "@myapp/ts-types";
|
||||
const x: 10 = myapp;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/tsconfig.json]
|
||||
{}
|
||||
|
||||
//// [/a/lib/lib.d.ts]
|
||||
/// <reference no-default-lib="true"/>
|
||||
interface Boolean {}
|
||||
interface Function {}
|
||||
interface CallableFunction {}
|
||||
interface NewableFunction {}
|
||||
interface IArguments {}
|
||||
interface Number { toExponential: any; }
|
||||
interface Object {}
|
||||
interface RegExp {}
|
||||
interface String { charAt: any; }
|
||||
interface Array<T> { length: number; [n: number]: T; }
|
||||
interface ReadonlyArray<T> {}
|
||||
declare const console: { log(msg: any): void; };
|
||||
|
||||
|
||||
/a/lib/tsc.js --w -p . --traceResolution --extendedDiagnostics
|
||||
Output::
|
||||
[[90m12:00:23 AM[0m] Starting compilation in watch mode...
|
||||
|
||||
Current directory: /user/username/projects/myproject CaseSensitiveFileNames: false
|
||||
FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Config file
|
||||
Synchronizing program
|
||||
CreatingProgramWith::
|
||||
roots: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/lib/app.ts 250 undefined Source file
|
||||
======== Resolving module '@myapp/ts-types' from '/user/username/projects/myproject/lib/app.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node10'.
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: TypeScript, Declaration.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/projects/myproject/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: JavaScript.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/projects/myproject/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
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: /a/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
|
||||
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
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Type roots
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/lib/app.js :: WatchInfo: /user/username/projects/myproject/lib 1 undefined Failed Lookup Locations
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/lib/app.js :: WatchInfo: /user/username/projects/myproject/lib 1 undefined Failed Lookup Locations
|
||||
[96mlib/app.ts[0m:[93m1[0m:[93m23[0m - [91merror[0m[90m TS2307: [0mCannot find module '@myapp/ts-types' or its corresponding type declarations.
|
||||
|
||||
[7m1[0m import { myapp } from "@myapp/ts-types";
|
||||
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
||||
|
||||
[[90m12:00:26 AM[0m] Found 1 error. Watching for file changes.
|
||||
|
||||
DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
|
||||
|
||||
Program root files: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
Program options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
Program structureReused: Not
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Semantic diagnostics in builder refreshed for::
|
||||
/a/lib/lib.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Shape signatures in builder refreshed for::
|
||||
/a/lib/lib.d.ts (used version)
|
||||
/user/username/projects/myproject/lib/app.ts (used version)
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/myproject/node_modules: *new*
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/node_modules: *new*
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/myproject/node_modules/@types: *new*
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/node_modules/@types: *new*
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/tsconfig.json: *new*
|
||||
{}
|
||||
/user/username/projects/myproject/lib/app.ts: *new*
|
||||
{}
|
||||
/a/lib/lib.d.ts: *new*
|
||||
{}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/lib: *new*
|
||||
{}
|
||||
/user/username/projects/myproject: *new*
|
||||
{}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/user/username/projects/myproject/lib/app.js]
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var ts_types_1 = require("@myapp/ts-types");
|
||||
var x = ts_types_1.myapp;
|
||||
|
||||
|
||||
|
||||
Change:: npm install unrelated non scoped
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/node_modules/unrelated/index.d.ts]
|
||||
export const unrelated = 10;
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/node_modules:
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/node_modules/@types:
|
||||
{"pollingInterval":500}
|
||||
|
||||
PolledWatches *deleted*::
|
||||
/user/username/projects/myproject/node_modules:
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{}
|
||||
/user/username/projects/myproject/lib/app.ts:
|
||||
{}
|
||||
/a/lib/lib.d.ts:
|
||||
{}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/lib:
|
||||
{}
|
||||
/user/username/projects/myproject:
|
||||
{}
|
||||
/user/username/projects/myproject/node_modules: *new*
|
||||
{}
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
6: timerToInvalidateFailedLookupResolutions
|
||||
7: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 1
|
||||
8: timerToUpdateProgram
|
||||
Before running Timeout callback:: count: 1
|
||||
8: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 0
|
||||
Output::
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
sysLog:: /user/username/projects/myproject/node_modules:: Changing watcher to PresentFileSystemEntryWatcher
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: 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 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/unrelated :: 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/unrelated :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/unrelated :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/unrelated :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/unrelated/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/unrelated/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/unrelated/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/unrelated/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Reloading new file names and options
|
||||
Synchronizing program
|
||||
[[90m12:00:33 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
======== Resolving module '@myapp/ts-types' from '/user/username/projects/myproject/lib/app.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node10'.
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: TypeScript, Declaration.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/projects/myproject/node_modules/@types' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: JavaScript.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
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. ========
|
||||
[96mlib/app.ts[0m:[93m1[0m:[93m23[0m - [91merror[0m[90m TS2307: [0mCannot find module '@myapp/ts-types' or its corresponding type declarations.
|
||||
|
||||
[7m1[0m import { myapp } from "@myapp/ts-types";
|
||||
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
||||
|
||||
[[90m12:00:34 AM[0m] Found 1 error. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
Program options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Semantic diagnostics in builder refreshed for::
|
||||
|
||||
No shapes updated in the builder::
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
|
||||
Change:: npm install unrelated scoped in myapp
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/node_modules/@myapp/unrelated/index.d.ts]
|
||||
export const myappUnrelated = 10;
|
||||
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
13: timerToInvalidateFailedLookupResolutions
|
||||
14: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 1
|
||||
15: timerToUpdateProgram
|
||||
Before running Timeout callback:: count: 1
|
||||
15: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 0
|
||||
Output::
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated :: 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/@myapp/unrelated :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated/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/@myapp/unrelated/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated/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/@myapp/unrelated/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Reloading new file names and options
|
||||
Synchronizing program
|
||||
[[90m12:00:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
======== Resolving module '@myapp/ts-types' from '/user/username/projects/myproject/lib/app.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node10'.
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: TypeScript, Declaration.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.ts' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.tsx' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.d.ts' does not exist.
|
||||
Directory '/user/username/projects/myproject/node_modules/@types' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/user/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Directory '/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: JavaScript.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.js' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.jsx' does not exist.
|
||||
Directory '/user/username/projects/node_modules' does not exist, skipping all lookups in it.
|
||||
Directory '/user/username/node_modules' does not exist, skipping all lookups in it.
|
||||
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. ========
|
||||
[96mlib/app.ts[0m:[93m1[0m:[93m23[0m - [91merror[0m[90m TS2307: [0mCannot find module '@myapp/ts-types' or its corresponding type declarations.
|
||||
|
||||
[7m1[0m import { myapp } from "@myapp/ts-types";
|
||||
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
||||
|
||||
[[90m12:00:43 AM[0m] Found 1 error. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
Program options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Semantic diagnostics in builder refreshed for::
|
||||
|
||||
No shapes updated in the builder::
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
|
||||
Change:: npm install unrelated2 scoped in myapp
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/node_modules/@myapp/unrelated2/index.d.ts]
|
||||
export const myappUnrelated2 = 10;
|
||||
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
18: timerToInvalidateFailedLookupResolutions
|
||||
19: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 0
|
||||
Before running Timeout callback:: count: 0
|
||||
After running Timeout callback:: count: 0
|
||||
Output::
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2 :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2 :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2/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/@myapp/unrelated2/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/unrelated2/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/@myapp/unrelated2/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Reloading new file names and options
|
||||
Synchronizing program
|
||||
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
|
||||
Change:: npm install ts-types
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts]
|
||||
export const myapp = 10;
|
||||
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
22: timerToInvalidateFailedLookupResolutions
|
||||
23: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 1
|
||||
24: timerToUpdateProgram
|
||||
Before running Timeout callback:: count: 1
|
||||
24: timerToUpdateProgram
|
||||
After running Timeout callback:: count: 0
|
||||
Output::
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types/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/@myapp/ts-types/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@myapp/ts-types/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/@myapp/ts-types/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory
|
||||
Scheduling update
|
||||
Reloading new file names and options
|
||||
Synchronizing program
|
||||
[[90m12:00:52 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
======== Resolving module '@myapp/ts-types' from '/user/username/projects/myproject/lib/app.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node10'.
|
||||
Loading module '@myapp/ts-types' from 'node_modules' folder, target file types: TypeScript, Declaration.
|
||||
Directory '/user/username/projects/myproject/lib/node_modules' does not exist, skipping all lookups in it.
|
||||
Scoped package detected, looking in 'myapp__ts-types'
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types/package.json' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.ts' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.tsx' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types.d.ts' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.ts' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.tsx' does not exist.
|
||||
File '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts' exists - use it as a name resolution result.
|
||||
Resolving real path for '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts', result '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts'.
|
||||
======== Module name '@myapp/ts-types' was successfully resolved to '/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts'. ========
|
||||
FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts 250 undefined Source file
|
||||
DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations
|
||||
Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations
|
||||
[[90m12:00:56 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/user/username/projects/myproject/lib/app.ts"]
|
||||
Program options: {"watch":true,"project":"/user/username/projects/myproject","traceResolution":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Semantic diagnostics in builder refreshed for::
|
||||
/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts
|
||||
/user/username/projects/myproject/lib/app.ts
|
||||
|
||||
Shape signatures in builder refreshed for::
|
||||
/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts (used version)
|
||||
/user/username/projects/myproject/lib/app.ts (computed .d.ts)
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"pollingInterval":500}
|
||||
/user/username/projects/node_modules/@types:
|
||||
{"pollingInterval":500}
|
||||
|
||||
PolledWatches *deleted*::
|
||||
/user/username/projects/node_modules:
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{}
|
||||
/user/username/projects/myproject/lib/app.ts:
|
||||
{}
|
||||
/a/lib/lib.d.ts:
|
||||
{}
|
||||
/user/username/projects/myproject/node_modules/@myapp/ts-types/index.d.ts: *new*
|
||||
{}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/lib:
|
||||
{}
|
||||
/user/username/projects/myproject:
|
||||
{}
|
||||
/user/username/projects/myproject/node_modules:
|
||||
{}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/user/username/projects/myproject/lib/app.js] file written with same contents
|
||||
Loading…
x
Reference in New Issue
Block a user